home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 2002 November / SGI Freeware 2002 November - Disc 2.iso / dist / fw_gnome-core.idb / usr / freeware / bin / gnome-download.z / gnome-download
Text File  |  2002-07-08  |  5KB  |  174 lines

  1. #!/usr/bin/perl
  2. #
  3. # Download script originally for QWeb - 
  4. # downloads anything and converts it into html
  5. #
  6. # Distribute under GPL version 2.
  7. #
  8. # Copyright 1997,1999 Pavel Machek <pavel@ucw.cz>
  9. #
  10.  
  11. sub lynx {
  12.     system( "lynx -source $_ || echo '<HTML><BODY><H1>Error</H1><P>Error occured when trying to download <TT>$_</TT>. Lynx failed to download selected file.</BODY></HTML>'" ); 
  13. }
  14.  
  15. $_ = $ARGV[0];
  16. $| = 1;
  17. if (/^ftp:/) {
  18.     print "Content-Type: text/html\n\n";
  19.     $_ =~ s-foo/../--;
  20.     lynx();
  21.     exit $? >> 8;
  22. }
  23.  
  24. # Don't use xterm - it is suid on my system and if I use it,
  25. # gnome-help-browser is blocked for the time it runs.
  26. $xterm = "xterm";
  27. # gnome-terminal does not recognize -e correctly.
  28. #$xterm = "gnome-terminal";
  29.  
  30. if (/^mailto:/) {
  31.     print "Content-Type: text/html\n\n";
  32.     $_ =~ s-^mailto:--;
  33.     $_ =~ s-^//--;
  34.     $_ =~ s-^//--;
  35.     $mailer = $ENV{'MAILER'};
  36.     if ($mailer eq "") {
  37.     $mailer = "elm";
  38.     $defaultmailer = 1;
  39.     }
  40.     $cmd = "$xterm -e $mailer $_";
  41.  
  42.     print "<HTML><HEAD>\n";
  43.     print "<TITLE>Sending mail to $_</TITLE>\n";
  44.     print "</HEAD><BODY>\n";
  45.     print "<H1>Mail to $_</H1>\n";
  46.     print "<P>External programs for sending mail (<tt>$cmd</tt>) were spawned for you. Press <I>back</I> when you finish sending mail. Press <I>reload</I> if you want to retry sending mail.\n";
  47.     if ($defaultmailer) {
  48.     print "<P>Notice that default mailer <tt>$mailer</tt> was spawned for you. If you do not like this, set your <tt>\$MAILER</tt> environment variable to mailer you prefer.\n";
  49.     }
  50.     print "</BODY></HTML>\n";
  51.  
  52.     system( "$cmd &" );
  53.     exit 0;
  54. }
  55.  
  56. if (/^news:/) {
  57.     print "Content-Type: internal/lynx-news\n\n";
  58.  
  59.     lynx();
  60.     exit $? >> 8;
  61. }
  62.  
  63. if (/^telnet:/) {
  64.     print "Content-Type: text/html\n\n";
  65.  
  66.     $_ =~ s-^telnet:--;
  67.     $_ =~ s-^//--;
  68.     $_ =~ s-^//--;
  69.     $HOST = $_;
  70.     if (/@/) { $NAME = $_;
  71.            $NAME =~ s-@.*--;
  72.        }
  73.     $HOST =~ s-.*@--;
  74.     $cmd = "$xterm -e telnet $HOST";
  75.  
  76.     print "<HTML><HEAD>\n";
  77.     print "<TITLE>Telnet to $HOST</TITLE>\n";
  78.     print "</HEAD><BODY>\n";
  79.     print "<H1>Telnet</H1>\n";
  80.     print "<P>External commands <TT>$cmd</TT> were spawned for you.\n";
  81.     if ($NAME) {
  82.     print "Login as <B><TT>$NAME</TT></B> when you get a chance.\n";
  83.     }
  84.     print "Press <I>back</I> when you finish connecting to remote host.</P>\n";
  85.     print "</BODY></HTML>\n";
  86.  
  87.     system( "$cmd &\n" );
  88.     exit 0;
  89. }
  90.  
  91. if (/^about:/) {
  92.     print "Content-Type: text/html\n\n";
  93.  
  94.     if (/mozilla/) {
  95.     print "<HTML><HEAD>\n";
  96.     print "<TITLE>Mozilla</TITLE>\n";
  97.     print "</HEAD><BODY>\n";
  98.     print "<H3><I>And time will come, when will be no Mozillas at all. Noone will eat megabytes and never let them free. Software will no longer crash. And sun will shine at the GNU world.</I></H3>\n";
  99.     print "<P ALIGN=right>I wrote this 2 years ago. Since mozilla went open source, I no longer think it is evil. Still, GNU GPL would be better.";
  100.     print "</BODY></HTML>\n";
  101.     exit 0;
  102.     }
  103.     
  104.     print "<HTML><HEAD>\n";
  105.     print "<TITLE>Gnome</TITLE>\n";
  106.     print "</HEAD><BODY>\n";
  107.     print "<H1>Gnome download system</H1>\n";
  108.     print "<H3>Copyright 1999 <A HREF=\"http://atrey.karlin.mff.cuni.cz/~pavel\">Pavel Machek</A>, GPL v2</H3>\n";
  109.     print "<P><TT>gnome-download</TT> allows retrieving documents by various transport methods pretty painlessly. It is perl script, which launches external commands (like lynx) frequently. It was designed for maximum flexibility, and you should feel free to modify it.\n";
  110.  
  111.     print "<H3>TODO</H3>\n";
  112.     print "<P><TT>lynx</TT> is really slow if <tt>/etc/mailcap</tt> is used. Fix it, somehow. Find nice possibility to save files, enter tar archives etc.\n";
  113.     
  114.     print "<H3>Contributors</H3>\n";
  115.     print "<UL>\n";
  116.     print "<LI>you want your name here ;-)\n";
  117.     print "</UL>\n";
  118.     print "</BODY></HTML>\n";
  119.     exit 0;
  120. }
  121.  
  122. if (/^file/) {
  123.     print "Content-Type: text/html\n\n";
  124.  
  125.     $_ =~ s-foo/../--;
  126. #    $_ =~ s-^file:--;
  127.     lynx();
  128.     exit 0;
  129. }
  130.  
  131. if (/^newspost/) {
  132.     print "Content-Type: text/html\n\n";
  133.  
  134.     $GROUPS = $_;
  135.     $GROUPS =~ s#.*/##;
  136.     $0 =~ s#download##;
  137.     $SERVER = $_;
  138.     $SERVER =~ s#newspost://##;
  139.     $SERVER =~ s#/.*##;
  140.  
  141.     print "<HTML><HEAD>\n";
  142.     print "<TITLE>Posting news article to $GROUPS on $SERVER</TITLE>\n";
  143.     print "</HEAD><BODY>\n";
  144.     print "<H1>Posting news</H1>\n";
  145.     print "<P>External programs <TT>xterm</TT> and <TT>bash</TT> were spawned for you. This means that you should fix newspost method. \n";
  146.     print "Press <I>back</I> when you finish posting to newsgroups.</P>\n";
  147.     print "</BODY></HTML>\n";
  148.  
  149. #    system( "$xterm -e $0newspost --post $GROUPS $SERVER &" );
  150.     system( "$xterm -e bash &" );
  151.     exit 0;
  152. }
  153.  
  154. if (/^netscape:|^lynx:|^mozilla:|^w3m:/) {
  155.     print "Content-Type: text/html\n\n";
  156.  
  157.     print "<HTML><HEAD>\n";
  158.     print "</HEAD><BODY>\n";
  159.     print "<H1>Launching other browser</H1>\n";
  160.     print "<P>Ok, you have requested browsing using other browser. It was spawned for you. Press <I>back</I> when you are done.\n";
  161.     $_ =~ s#([^:]*):##;
  162.     print "<P>(Am I right that you want $1?)\n"; 
  163.     print "</BODY></HTML>\n";
  164.     system( "$xterm -e bash -c '$1 $_' &" );
  165.     exit 0;
  166. }
  167.  
  168. print "Content-Type: text/html\n\n";
  169.  
  170. lynx();
  171. exit $? >> 8;
  172.  
  173.  
  174.